home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / debconf.prerm < prev    next >
Text File  |  2008-10-10  |  173b  |  12 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. # copied from /usr/share/debhelper/autoscripts/prerm-python for now
  5. dpkg -L debconf |
  6.     awk '$0~/\.py$/ {print $0"c\n" $0"o"}' |
  7.     xargs rm -f >&2
  8.  
  9.  
  10.  
  11. exit 0
  12.